home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / basic / pbc_bas.exe / REVI.BAS < prev    next >
BASIC Source File  |  1993-01-01  |  545b  |  12 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |        PBClone  Copyright (c) 1990-1993  Thomas G. Hanlin III        |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7. SUB ReverseI (Array() AS INTEGER, Elements%)
  8.    FOR tmp% = 1 TO Elements% \ 2
  9.       SWAP Array(tmp%), Array(Elements% - (tmp% - 1))
  10.    NEXT
  11. END SUB
  12.